home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / vol16n12.zip / IPC.ZIP / THROW.ZIP / THROWDLG.H < prev   
C/C++ Source or Header  |  1997-02-12  |  833b  |  38 lines

  1. // ThrowDlg.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CThrowDlg dialog
  6.  
  7. class CThrowDlg : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CThrowDlg(CWnd* pParent = NULL);    // standard constructor
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(CThrowDlg)
  15.     enum { IDD = IDD_THROW_DIALOG };
  16.     CEdit    m_wndEdit;
  17.     //}}AFX_DATA
  18.  
  19.     // ClassWizard generated virtual function overrides
  20.     //{{AFX_VIRTUAL(CThrowDlg)
  21.     protected:
  22.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  23.     //}}AFX_VIRTUAL
  24.  
  25. // Implementation
  26. protected:
  27.     HICON m_hIcon;
  28.  
  29.     // Generated message map functions
  30.     //{{AFX_MSG(CThrowDlg)
  31.     virtual BOOL OnInitDialog();
  32.     afx_msg void OnPaint();
  33.     afx_msg HCURSOR OnQueryDragIcon();
  34.     afx_msg void OnSend();
  35.     //}}AFX_MSG
  36.     DECLARE_MESSAGE_MAP()
  37. };
  38.